From: Glenn Morris Date: Tue, 1 Dec 2009 03:14:02 +0000 (+0000) Subject: (byte-compile-save-excursion): Make message consistent with others (no X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~9161 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=61df36d2a5a023a865b56ed1b83b835a64cb3526;p=emacs.git (byte-compile-save-excursion): Make message consistent with others (no final period). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ff79d3b3469..5d9edfb78c2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-12-01 Glenn Morris + * emacs-lisp/bytecomp.el (byte-compile-save-excursion): Make message + consistent with others (no final period). + * mail/rmailmm.el (rmail-mime-handle): Doc fix. (rmail-mime-show): Downcase the encoding. (Bug#5070) diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index bf7c2c113f0..c633f7f6567 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -3714,7 +3714,7 @@ that suppresses all warnings during execution of BODY." (defun byte-compile-save-excursion (form) (if (and (eq 'set-buffer (car-safe (car-safe (cdr form)))) (byte-compile-warning-enabled-p 'suspicious)) - (byte-compile-warn "`save-excursion' defeated by `set-buffer'.")) + (byte-compile-warn "`save-excursion' defeated by `set-buffer'")) (byte-compile-out 'byte-save-excursion 0) (byte-compile-body-do-effect (cdr form)) (byte-compile-out 'byte-unbind 1))